﻿<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>404，您访问的网页丢失了</title>
</head>
<body>
    <style>
    .errorpage {
        width: 750px;
        height: 500px;
        text-align: center;
        margin: 0 auto;
        padding-top: 40px;
    }
    /* .errorpage {
        position: fixed;
        width: 750px;
        height: 500px;
        left: 50%;
        top: 50%;
        margin-top: -250px;
        margin-left: -375px;
        text-align: center; 
    } */
    .errorpage .errortitle{
        position: relative;
    }
    .errorpage .error404{
        position: absolute;
        left: 38%;
        top: 55%;
    }
    .errorpage .errortext{
        line-height: 30px;
        font-size: 20px;
        color: #fff;
        text-shadow: 2px 1px 1px #018a5c;
        margin-top: 30px;
    }
    .errorpage .errorlink a{
        position: relative;
        overflow: hidden;
        display: inline-block;
        line-height: 40px;
        font-size: 16px;
        color: #fff;
        background-color: #00c3f3;
        border-radius: 5px;
        box-shadow: 0px 2px 2px #018a5c;
        padding: 0 25px;
        margin-top: 25px;
    }
    .errorpage .errorlink a i{
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        width: 0;
        height: 100%;
        opacity: 0;
        background-color: #000;
        transition: .6s;
        -moz-transition: .6s;
        -o-transition: .6s;
        -webkit-transition: .6s;
    }
    .errorpage .errorlink a:hover i{
        opacity: .2;        
        width: 100%;
        box-shadow: 0px 2px 2px #00c3f3;
    }
</style>


<div class="errorpage">
    <div class="errortitle">
        <img src="/content/images/errorpic.png" />
        <img class="error404" src="/content/images/404img.png" />
    </div>
    <div class="errortext">啊哦~ 您访问的网页丢失了！</div>
    <div class="errorlink"><a href="/">返回首页<i></i></a></div>
</div>
</body>
</html>
